home *** CD-ROM | disk | FTP | other *** search
/ Aminet 44 / Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso / Aminet / dev / gui / gtlayout.lha / Source / LTP_InitIText.c < prev    next >
C/C++ Source or Header  |  1999-01-02  |  526b  |  31 lines

  1. /*
  2. **    GadTools layout toolkit
  3. **
  4. **    Copyright © 1993-1999 by Olaf `Olsen' Barthel
  5. **        Freely distributable.
  6. **
  7. **    :ts=4
  8. */
  9.  
  10. #ifndef _GTLAYOUT_GLOBAL_H
  11. #include "gtlayout_global.h"
  12. #endif
  13.  
  14. #include "Assert.h"
  15.  
  16. #ifdef DO_MENUS    /* Support code */
  17.  
  18.     /* LTP_InitIText(RootMenu *Root,struct IntuiText *IText):
  19.      *
  20.      *    Initialize IntuiText data structure with defaults.
  21.      */
  22.  
  23. VOID
  24. LTP_InitIText(RootMenu *Root,struct IntuiText *IText)
  25. {
  26.     IText->FrontPen        = Root->TextPen;
  27.     IText->ITextFont    = Root->TextAttr;
  28. }
  29.  
  30. #endif    /* DO_MENUS */
  31.